container/list.List.insertValue (method)

7 uses

	container/list (current package)
		list.go#L103: func (l *List) insertValue(v any, at *Element) *Element {
		list.go#L146: 	return l.insertValue(v, &l.root)
		list.go#L152: 	return l.insertValue(v, l.root.prev)
		list.go#L163: 	return l.insertValue(v, mark.prev)
		list.go#L174: 	return l.insertValue(v, mark)
		list.go#L224: 		l.insertValue(e.Value, l.root.prev)
		list.go#L233: 		l.insertValue(e.Value, &l.root)